@font-face {
  font-family: 'sharetech-regular';
  src: url(https://extremities.neocities.org/mainFont/sharetech-regular-webfont.woff);
}
      
body {
  color: white; 
  background: rgba(0,6,25,1);
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: 'sharetech-regular';
}

.container {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main_gradient {
  z-index: -99;
  position: fixed;
  background-image: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0), rgba(0,0,0,0.75));
  width: 100vw;
  height: 100vh;
}

img {
  pointer-events: none; 
}

a { /* removes the blue link */
  color: inherit; 
  text-decoration: none; 
}

.title {
  font-size: 50px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center; 
  font-weight: normal;
  border-bottom-style: solid;
  border-color: rgba(3,135,1,1);
}

.list {
  display: inline-block;
  width: 80vw;
  max-width: 500px;
  text-align:left;
  margin: 0;
  padding: 0;
  padding-right: 20px;
  letter-spacing: 7px;
  line-height: 1.5;
  list-style-type: none;
  height: 190px;
  max-height: 190px;
  overflow-y: scroll; 
}   

.list > li {
  align-self:flex-end;
}

.list > li > a {
  letter-spacing: 0px;
  transition: 0.5s;
}

.list > li > a:hover {
  letter-spacing: 7px;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.back_button {
  margin-top: 20px;
  letter-spacing: 7px;
  text-align:center; 
}

.back_button > a {
  font-size: 17px;
  display:inline-block;
  width: 52.5px;
  padding-bottom:3.33px;
  transition: 0.5s;
  border-bottom-style: solid;
  border-color: rgba(3,135,1,1);
}

.back_button > a:hover {
  width: 107px;
  letter-spacing:14px;
}


.back_button > a:after {
  content: "//";
  position: relative;
  left: 55px;
  opacity: 0;
  transition: 0.35s;
  letter-spacing: 7px;
}

.back_button > a:hover:after {
  left: 5px;
  opacity: 1;
  letter-spacing:7px;
}